home *** CD-ROM | disk | FTP | other *** search
/ Champak 50 / Volume 50 - JOGO DISK .iso / Games / money_maze.swf / scripts / DefineSprite_420 / frame_1 / DoAction.as
Text File  |  2007-09-27  |  782b  |  50 lines

  1. function setCaught(bState)
  2. {
  3.    if(bState)
  4.    {
  5.       mcCory.gotoAndPlay("on");
  6.       mcTrapped.gotoAndStop("on");
  7.    }
  8.    else
  9.    {
  10.       mcTrapped.gotoAndStop("off");
  11.    }
  12. }
  13. function setTrapsActive(bState)
  14. {
  15.    if(bState)
  16.    {
  17.       mcTrapsActive.gotoAndStop("on");
  18.    }
  19.    else
  20.    {
  21.       mcTrapsActive.gotoAndStop("off");
  22.    }
  23. }
  24. function setScore(iScore)
  25. {
  26.    if(iScore != score)
  27.    {
  28.       score = Math.ceil(iScore);
  29.       MovieClip.prototype.score = score;
  30.    }
  31. }
  32. function getScore()
  33. {
  34.    return score;
  35. }
  36. function appendScore(iScore)
  37. {
  38.    setScore(score + Number(iScore));
  39. }
  40. function showQuit()
  41. {
  42.    mcDialog.showDialog("quit");
  43.    _parent.pause();
  44. }
  45. function showHelp()
  46. {
  47.    _parent.pause();
  48.    mcDialog.showDialog("help");
  49. }
  50.